@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300&display=swap');
*
{
    padding: 0;
    margin: 0;
    font-family: 'Rajdhani' sans-serif;
}
 h2 
{
    margin-top:10% ;
   text-align: center;
   width: 100%;
   height: 30px;
   color: black;
      
   
}
.veiw-box
{
    width: 900px;
    height: 400px;
    border-radius: 220px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.user
{
    width: 800px;
    text-align: center;
    padding: 20px 70px;
    box-sizing: border-box;
    background: tan;
    border-radius: 200px;
    box-shadow: 0 10px 20px -5px tan;
    position: relative;

}
.user img
{
    width: 100px;
    border-radius: 30%;
    border: 4px solid black;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.user p
{
    font-size: 18px;
    color: black;
    line-height: 20px;
    margin: 50px 0 38px;
}
